home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / man-db.prerm < prev    next >
Text File  |  2008-07-11  |  321b  |  19 lines

  1. #!/bin/sh -e
  2.  
  3. case $1 in
  4.     remove)
  5.     # Kill symlinks created in postinst
  6.     rm -f /usr/bin/man /usr/bin/mandb
  7.     ;;
  8. esac
  9.  
  10. # Automatically added by dh_installdocs
  11. if [ "$1" = remove ] || [ "$1" = upgrade ] && \
  12.    which install-docs >/dev/null 2>&1; then
  13.     install-docs -r man-db
  14. fi
  15. # End automatically added section
  16.  
  17.  
  18. exit 0
  19.